Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

flora-errors

Package Overview
Dependencies
Maintainers
4
Versions
11
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

flora-errors

Error definitions for Flora

  • 0.9.1
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
93
decreased by-60.92%
Maintainers
4
Weekly downloads
 
Created
Source

Flora Errors

Build Status NPM version Dependencies

Error definitions for Flora.

This module exposes error classes for different types of errors to be able to determine whether an error should be displayed to the client (such as AuthenticationError) or not (internal errors).

To be able to pass through the error type to clients, a code property is also set. The default error codes are listed below.

Error classes

RequestError

Generic request error (the user made an invalid request). HTTP status code 400, the message will be displayed. Error code is ERR_REQUEST_ERROR.

AuthenticationError

The user is either not authenticated, or the credentials are wrong. HTTP status code 401. Error code is ERR_AUTHENTICATION_ERROR.

AuthorizationError

The user may be authenticated, but is not authorized for the requested action. HTTP status code 403. Error code is ERR_AUTHORIZATION_ERROR.

NotFoundError

Either the requested resource could not be found, or a specific entity of the resource. HTTP status code 404, message will be displayed. Error code is ERR_NOT_FOUND.

ImplementationError

There is a problem with the implementation, e.g. of one of the resources. This should not happen. HTTP status code 500. Error code is ERR_IMPLEMENTATION_ERROR.

DataError

There is a problem with the data retrieved by one of the data sources. HTTP status code 500. Error code is ERR_DATA_ERROR.

ConnectionError

There is a problem with the connection to a data source. May work on retry (e.g. temporary network problems). HTTP status code 503. Error code is ERR_CONNECTION_ERROR.

License

MIT

FAQs

Package last updated on 27 Nov 2018

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc